home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1999 March
/
EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso
/
earcd
/
devel
/
libx11
/
include
/
xm
/
scrollbar.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-01
|
2KB
|
77 lines
/*
* (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
* ALL RIGHTS RESERVED
*/
/* $RCSfile: ScrollBar.h,v $ $Revision: 1.9 $ $Date: 92/05/14 12:56:36 $ */
/*
* (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
/*
* (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
#ifndef _XmScrollBar_h
#define _XmScrollBar_h
#include <Xm/Xm.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ScrollBar Widget */
externalref WidgetClass xmScrollBarWidgetClass;
typedef struct _XmScrollBarClassRec * XmScrollBarWidgetClass;
typedef struct _XmScrollBarRec * XmScrollBarWidget;
/* ifndef for Fast Subclassing */
#ifndef XmIsScrollBar
#define XmIsScrollBar(w) XtIsSubclass(w, xmScrollBarWidgetClass)
#endif /* XmIsScrollBar */
/******** Public Function Declarations ********/
#ifdef _NO_PROTO
extern Widget XmCreateScrollBar() ;
extern void XmScrollBarGetValues() ;
extern void XmScrollBarSetValues() ;
#else
extern Widget XmCreateScrollBar(
Widget parent,
char *name,
ArgList arglist,
Cardinal argcount) ;
extern void XmScrollBarGetValues(
Widget w,
int *value,
int *slider_size,
int *increment,
int *page_increment) ;
extern void XmScrollBarSetValues(
Widget w,
int value,
int slider_size,
int increment,
int page_increment,
#if NeedWidePrototypes
int notify) ;
#else
Boolean notify) ;
#endif /* NeedWidePrototypes */
#endif /* _NO_PROTO */
/******** End Public Function Declarations ********/
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmScrollBar_h */
/* DON'T ADD ANYTHING AFTER THIS #endif */